﻿
.sixth-part{
    margin: 5rem auto;
    height:500px;
    display:flex;
    align-items:center;
}
.bg-video-all {
    width: 100%;
    border-radius: 10px;
}
.trav-beyond-part {
    position: relative;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 40px;
}

    .trav-beyond-part .trav-slick-carousel {
        width: 100%;
        margin: 0 auto;
    }

        .trav-beyond-part .trav-slick-carousel .trav-card {
            background: #fff;
            margin: 0 10px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
        }





    .trav-beyond-part .trav-prev-btn,
    .trav-beyond-part .trav-next-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: royalblue;
        border: none;
        display: block !important;
        padding: 12px 15px;
        cursor: pointer;
        border-radius: 50%;
        font-size: 14px;
        color: white;
        z-index: 100;
        transition: background-color 0.3s;
    }
.slick-arrow {
   
}
    .trav-beyond-part .trav-prev-btn:hover, .trav-beyond-part .trav-next-btn:hover {
            background: #2bc589;
        }

    .trav-beyond-part .trav-prev-btn {
        left: 0;
    }

    .trav-beyond-part .trav-next-btn {
        right: 0;
    }

    .trav-beyond-part .trav-slick-carousel .slick-slide {
        margin: 0 10px;
    }

    .trav-beyond-part .trav-slick-carousel:not(.slick-initialized) {
        display: none;
    }
/* Main Bliss Part */
.bliss-part {
    position: relative;
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    
}
.trip-all-detail {
    border: 1px solid #EBEBEB;
    background: #FCFCFC;
    border-radius:8px;
}
.all-bloss {
    padding: 10px;
}
.bloss-text {
    color: #333;
    /* Package Name- Card */
    font-family: Inter;
    font-size: 14px;
    margin:0;
    font-weight:600;
    line-height:normal;
    text-align: start;
    font-style: normal;
}


.bliss-info {
    background: rgb(121 121 121 / 50%);
    backdrop-filter: blur(4px);
    padding: 10px;
    text-align: start;
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}
.days-and-nights{

}
    .days-and-nights p {
        color: #0347AE;
        font-family: Inter;
        font-size: 10px;
        font-style: normal;
        padding: 0 5px;
        margin: 0;
        font-weight: 500;
        position:absolute;
        top:10px;
        left:10px;
        border-radius: 5px;
        border: 1px solid #0347AE;
        background: #FFF;
    }
.bliss-price-text {
    color: #eeeeeeb0;
    font-size: 10px;
    margin: 0;
    font-family: 'Inter';
}

.bliss-price {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    font-family: 'Inter';
}

.bliss-per-person {
    font-size: 10px;
    color: #ccc;
}
.blis-first{
    flex:1;
}
.bliss-discount {
    border-radius: 16px;
    background: #FFD166;
    display: flex;
    color: #000;
    gap: 4px;
    font-size: 11px;
    padding: 0 7px;
    margin: 0;
    font-weight: 600;
}
.head-part-video h4 {
    color: #000;
    font-size: 30px;
    margin: 0;
    background: linear-gradient(90deg, #0C3483 0%, #A2B6DF 100%, #6B8CCE 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.head-part-video p {
    font-size: 16px;
    width: 75%;
    margin-top: 10px;
 
}
.head-part-video{
    margin-top:2rem;
}
.travel-showcase {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 15px;
}


.destination-card {
    position: relative;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .destination-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }


.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgb(54 54 54 / 60%));
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}

/* Text styles */
.destination-name {
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    font-family: 'Inter';
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.destination-card:hover .destination-name {
    transform: translateY(-20px);
}

.destination-info {
    position: absolute;
    color: white;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.destination-card:hover .destination-info {
    opacity: 1;
    transform: translateY(20px);
}

/* Media queries */



.travel-banner-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.from-to-new {
    display: flex;
    flex-direction: column;
    width: 22%;
}
.from-text-new, .to-text-new {
    font-size: 0.8rem;
    color: #555;
    font-weight: 600;
    line-height: 0px;
}
.wanderlust-new {
    font-size: 33px;
    background: linear-gradient(90deg, #0C3483 0%, #A2B6DF 100%, #6B8CCE 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-family: 'Inter';
}
.line-container-new {
    display: flex;
    align-items: center;
    position: relative;
    width: 52%;
}

.start-dot-new {
    width: 10px;
    height: 10px;
    background-color: #333;
    border-radius: 50%;
    margin-right: 5px;
}

.dotted-line-new {
    border-top: 2px dotted #333;
    width: 100%;
}

.plane-new {
    font-size: 2rem;
    margin-left: -5px;
    margin-right: -5px;
}
.all-trip-pack{
    margin:3rem auto;
}
.wander-must-new {
    font-size: 33px;
    background: linear-gradient(90deg, #0C3483 0%, #A2B6DF 100%, #6B8CCE 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-family: 'Inter';
}
.subtext-all {
    font-size: 18px;
    color: #333;
    margin-top: 0px;
    font-family: 'Inter';
}
@media only screen and (min-width: 320px) and (max-width: 650px) {
    .sixth-part {
       height:auto;
       margin:2rem auto;
    }
    .head-part-video h4 {
        color: #000;
        font-size: 24px;
        margin: 0;
       
    }
    .head-part-video p {
        font-size: 15px;
        width: 100%;
         margin-top: 0px; 
    }
    .head-part-video {
        margin-top: 0rem;
    }
    .bg-video-all {
        width: 275px;
        display:none;
        border-radius: 10px;
    }
    .trav-beyond-part {
       padding:0;
        max-width: 100%;
        margin: 0 auto;
        /* padding: 20px 40px; */
    }
    .bliss-part {
       
        background-position: center;
        background-size: cover;

    }
    .trav-card {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .from-to-new {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .wanderlust-new {
        font-size: 16px;   
        font-weight: 600;
    }
    .wander-must-new {
        font-size: 16px;
        font-weight: 600;
        font-family: 'Inter';
    }
    .travel-banner-new {
        gap: 5px;
    }
    .subtext-all {
        font-size: 13px;
    }
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .destination-card {
        height: 116px;
    }
    .destination-name {
        color: white;
        font-size: 0.9em;
        
    }
    .dotted-line-new {
        border-top: 2px dotted #333;
        width: 46%;
    }
    .line-container-new {
        width: 100%;
    }
    .slick-arrow {
        width: 40px !important;
        height: 41px !important;
        display: none !important;
    }
}
@media only screen and (min-width: 651px) and (max-width: 1024px) {
    .sixth-part {
        margin: 2rem auto;
        height: auto;
        display: flex;
        align-items: center;
    }
    .fourth-part {
        width: 100%;
        height: 20vh;
        
    }
    .bg-video-all {
        width: 450px;
        border-radius: 10px;
    }
    .trav-beyond-part {
       
        margin: 0 auto;
        padding: 1rem 6px;
    }
    .trav-part{
        display:flex;
    }
    .from-to-new {
        width: 100%;
    }
    .wanderlust-new {
        font-size: 27px;
    }
    .line-container-new {
        width: 100%;
    }
    .wander-must-new {
        font-size: 28px;
    }
    .destination-grid {
        
        gap: 10px;
        margin-bottom: 15px;
    }
    .destination-card {
        position: relative;
        height: 124px;
       
    }
    .eight-part {
        margin: 0rem auto;
    }
    .trav-part .col-md-4{
        width:100%;
    }
}


.destination-image {
    height: 180px;
    object-fit: cover;
}